Electron shell 模块
shell 模块提供了与操作系统桌面相关的能力。
导入模块
const {shell} = require('electron');
使用浏览器打开 URL
监听并拦截点击事件,使用外部默认浏览器打开:
linkSection.addEventListener('click', (event) => {
if (event.target.href) {
event.preventDefault();
shell.openExternal(event.target.href);
}
});
本文作者:Maeiee
本文链接:Electron shell 模块
版权声明:如无特别声明,本文即为原创文章,版权归 Maeiee 所有,未经允许不得转载!
喜欢我文章的朋友请随缘打赏,鼓励我创作更多更好的作品!